home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 August / CHIP Turkiye Ağustos 2000 CD2.iso / prog / symntc / 06 / WFSCRIPT.SPT < prev   
Text File  |  2000-04-30  |  15KB  |  528 lines

  1. ;==================================================================
  2. ;WinFax PRO 9.0 (Fax Sharing)                  Symantec Corporation
  3. ;Sample Script File                                     August 1998
  4. ;==================================================================
  5. ;
  6. ; About Scripted Installations:
  7. ; -----------------------------------
  8. ;You can install WinFax on one or more computers, depending on 
  9. ;the type of license you purchased. If you are installing WinFax
  10. ;on a single computer, you can do so from the WinFax CD. If more 
  11. ;than one person in your organization is installing WinFax, your
  12. ;administrator may automate the installation process using a 
  13. ;scripted installation.
  14. ;
  15. ;To automate the installation process, you can use a scripted 
  16. ;installation. A scripted installation installs WinFax using the
  17. ;settings contained in two files: an InstallShield silent response
  18. ;file (SETUP.ISS) and a script file (WFSCRIPT.SPT). The 
  19. ;InstallShield silent response file contains all options you would
  20. ;normally specify during the WinFax installation. The script file
  21. ;contains options that you would configure after installing 
  22. ;WinFax (for example, the modem or fax device you want to use).
  23. ;
  24. ; To install WinFax using a scripted install:
  25. ;
  26. ; 1. Copy the WinFax installation files from the WinFax
  27. ;    installation CD to a network drive that is accessible to
  28. ;    all users who will install WinFax on their computers.
  29. ;
  30. ; 2. Create an InstallShield silent response file (SETUP.ISS) 
  31. ;    that you can use as an installation template. 
  32. ;
  33. ; 3. Create an installation script file containing the appropriate
  34. ;    configuration options. (This file is a sample script file.)
  35. ;
  36. ; 4. Copy both the InstallShield silent response file (SETUP.ISS) 
  37. ;    and the installation script (WFSCRIPT.SPT) to the Disk1 
  38. ;    subdirectory of the network directory containing the WinFax
  39. ;    installation files.
  40. ;
  41. ; 5. Instruct users to install WinFax using the silent response 
  42. ;    file and installation script. 
  43. ;
  44. ; FOR DETAILED INSTRUCTIONS ON USING SCRIPTED INSTALLATIONS SEE
  45. ; THE ELECTRONIC VERSIONS OF THE DOCUMENTATION AVAILABLE ON THE 
  46. ; WINFAX INSTALLATION CD:
  47. ;
  48. ; * WinFax PRO for Networks - WFPN16.PDF
  49. ; * WinFax PRO Fax Sharing - WFXSHARE.PDF
  50. ; * WinFax (all other modems & fax devices) - WFSCRIPT.PDF
  51. ;
  52. ;
  53. ; About this File:
  54. ; -----------------------------------
  55. ; This file contains a sample a typical script required to run 
  56. ; the WinFax scripted install. You can use an install script to 
  57. ; configure WinFax to work with the following 
  58. ; modem/fax devices:
  59. ; * WinFax PRO Fax Sharing Client "Networked" mode (Peer-to-Peer)
  60. ; * WinFax PRO for Networks "Networked" mode 
  61. ; * Regular modem
  62. ; * CAS modem/fax board
  63. ; * ISDN card
  64. ; * RightFAX Server Interface
  65. ;
  66. ;
  67. ; Do not delete any entries or sections that are not used. Simply 
  68. ; comment them out with a leading semi-colon (;).
  69.  
  70.  
  71.  
  72.  
  73.  
  74. [GENERAL]
  75. ;Use this section to specify the installation directory
  76. ;and the installation type.
  77.  
  78.  
  79. ;INSTALLATION DIRECTORY--This entry identifies the 
  80. ;installation directory on the user's computer. This 
  81. ;example provides the default location. 
  82.  
  83. EXEPATH=C:\Program Files\Symantec\WinFax
  84.  
  85.  
  86. ;INSTALLATION TYPE--This entry identifies the  
  87. ;type of installation. The Typical option installs the complete
  88. ;set of WinFax program files. The Minimum option 
  89. ;installs the fewest number of files required. Do one of
  90. ;the following:
  91. ;
  92. ; * Typical installation - Set INSTTYPE=0.
  93. ; * Minimum installation - Set INSTTYPE=1.
  94.  
  95. INSTTYPE=0
  96.  
  97.  
  98.  
  99.  
  100.  
  101. [LOCATION]
  102. ;Use this section to specify dialing instructions for 
  103. ;your current location.
  104.  
  105.  
  106. ;COUNTRY CODE AND AREA CODE--These entries identify
  107. ;the Default dialing location settings for users.
  108. ;For the United States and Canada, the country code 
  109. ;is 1. If you are setting up a non-North American 
  110. ;location, type the routing code (or city code) in the 
  111. ;AREA entry.
  112.  
  113. COUNTRY=1
  114. AREA=416
  115.  
  116.  
  117. ;ENABLE PREFIX--This entry enables or disables a dialing 
  118. ;prefix for the Default location. Do one of the following:
  119. ;
  120. ; * Use a prefix - Set USEPREFIX=1.
  121. ; * Do not use a prefix - Set USEPREFIX=0.
  122.  
  123. USEPREFIX=1
  124.  
  125.  
  126. ;DEFINE PREFIX--This entry defines the prefix for the Default location. 
  127. ;A comma adds a 2 second pause to the dial sequence.
  128.  
  129. PREFIX=9,
  130.  
  131.  
  132.  
  133.  
  134.  
  135. [STANDALONE]
  136. ;Use this section to specify whether you are installing a
  137. ;standalone version of WinFax or a networked version of WinFax.
  138.  
  139.  
  140. ;STANDALONE--This entry identifies whether you want to
  141. ;install WinFax to work with a local fax device or a remote
  142. ;fax device. Do one of the following:
  143. ;
  144. ;  * WinFax PRO Fax Sharing Client - Set STDALONE=0.  
  145. ;  * WinFax PRO for Networks Client - Set  STDALONE=0. 
  146. ;  * CAS modem/fax board - Set STDALONE=0.
  147. ;  * ISDN card - Set STDALONE=0.
  148. ;  * RightFAX - Set STDALONE=0.
  149. ;  * Regular modem - Set STDALONE=1.
  150.  
  151. STDALONE=0
  152.  
  153.  
  154.  
  155.  
  156.  
  157. [WFXIFSETUP]
  158. ;Use this section to specify the type of fax device you want
  159. ;to use with WinFax. If you are using a custom fax device
  160. ;created using the WinFax PRO Software Development Kit
  161. ;HAL feature, use this section to specify additional
  162. ;options for your device.
  163.  
  164.  
  165. ;FAX DEVICE--This entry specifies the type of fax
  166. ;device you want to use with WinFax. Do one of the
  167. ;following:
  168. ;
  169. ; * WinFax PRO Fax Sharing Client - Set WFXIFID=WPP.
  170. ; * WinFax PRO for Networks Client - Set WFXIFID=FGT.
  171. ; * CAS modem/fax board - Set WFXIFID=CAS.
  172. ; * ISDN card - Set WFXIFID=ISC.
  173. ; * RightFAX - Set WFXIFID=RFX.
  174. ; * Regular modem - Ignore this entry.
  175.  
  176. WFXIFID=WPP
  177.  
  178.  
  179. ;MANUAL OVERRIDE--Some HAL devices are capable
  180. ;of automatically determining the appropriate configuration
  181. ;based on hardware detected on your system. These
  182. ;devices will perform this auto-configuration unless you
  183. ;set the following value to 1, in order to manually select
  184. ;the configuration. Normally, you should not change this
  185. ;entry
  186.  
  187. ManualOverride=0
  188.  
  189.  
  190. ;INSTANCE NAME/ID--These entries identify
  191. ;the instance (or "operating mode") to be configured
  192. ;for the selected HAL. One of these entries must be
  193. ;provided, unless your HAL has auto-configuration
  194. ;capability and FirstInstance (see below) is set to 1.
  195. ;There is a one-to-one correspondance between
  196. ;InstanceName and InstanceID, so only one of the
  197. ;entries need be provided. If both are provided, the
  198. ;InstanceName will be used (InstanceID will be
  199. ;ignored). You can determine the set of available
  200. ;InstanceName values by manually configuring
  201. ;the HAL and recording the strings that appear in
  202. ;the configuration dialogs (in the "Model" list). To
  203. ;use InstanceID, a list must be provided by the
  204. ;manufacturer as it is not apparent from the "Model"
  205. ;list what the equivalent numeric ID would be.
  206. ;An error will result if the instance
  207. ;cannot be found in the set of instances enumerated
  208. ;by the HAL as being available.
  209.  
  210. InstanceName=
  211. InstanceID=1
  212.  
  213.  
  214. ;FIRST INSTANCE--If the HAL you are configuring
  215. ;is autoconfigure capable and the HAL determines
  216. ;that more than one possible configuration is available,
  217. ;this entry indicates that you want to have the first
  218. ;possible configuration selected. If set to 0, then you
  219. ;are again expected to provide the InstanceName or
  220. ;InstanceID, as described above, and if such a
  221. ;configuration is not included in the set of potential
  222. ;configurations detected, an error will occur.
  223. ;Normally, this entry can be left at a value of 1.
  224.  
  225. FirstInstance=1
  226.  
  227.  
  228.  
  229.  
  230. [AUTCNFIG]
  231. ;This entry indicates that you want to automatically 
  232. ;configure WinFax to work with a local modem. 
  233. ;
  234. ;Before using this entry, you must do the following:
  235. ;
  236. ;1. Install WinFax to work with your local modem.
  237. ;
  238. ;2. Verify that your modem works properly.
  239. ;3. Export the registry key:
  240. ;   HKEY_LOCAL_MACHINE\Software\Delrina\commsuite\7.0\modems\modems0
  241. ;
  242. ;4. Name the exported file "AUTCNFIG.REG".
  243. ;
  244. ;5. Copy AUTCNFIG.REG to the network directory
  245. ;   containing the WinFax installation files.
  246. ;
  247. ;Before running the scripted install, the AUTOCNFIG.REG file must
  248. ;be copied from the network directory (containing the WinFax 
  249. ;installation files) to the "Windows" directory on the 
  250. ;user's station.
  251.  
  252.  
  253.  
  254.  
  255.  
  256. [MODEMS]
  257.  
  258. ;NETWORK MODEM--This entry identifies users as 
  259. ;WinFax clients on a network. Do the following:
  260. ;
  261. ; * WinFax PRO Fax Sharing Client - Set USEHAL=1.
  262. ; * WinFax PRO for Networks Client - Set USEHAL=1.
  263. ; * CAS modem/fax board - Set USEHAL=1.
  264. ; * ISDN card - Set USEHAL=1.
  265. ; * RightFAX - Set USEHAL=1.
  266. ; * Regular modem - Set USEHAL=3.
  267.  
  268. USEHAL=1
  269.  
  270.  
  271. ;NETWORK SERVER--This entry identifies the type of fax
  272. ;network you are using.
  273. ;
  274. ;* WinFax PRO Fax Sharing Client - Set HAL=2.
  275. ;* WinFax PRO for Networks Client - Set HAL=0.
  276. ; * CAS modem/fax board - Set HAL=3.
  277. ; * ISDN card - Set HAL=3.
  278. ; * RightFAX - Set HAL=3.
  279. ; * Regular modem - Set HAL=3.
  280.  
  281. HAL=3
  282.  
  283.  
  284.  
  285.  
  286.  
  287. [WPP SETTINGS]
  288. ;Use this section to specify settings for the Fax Sharing fax device.
  289. ;If you are not using this script file to install WinFax for
  290. ; fax sharing, ignore this section.
  291. ;DO NOT DELETE THIS SECTION. 
  292.  
  293.  
  294. ; WINFAX HOST STATION--Specify the WinFax Host station's
  295.  network computer name or IP address. You must complete this entry.
  296.  
  297. HostID=
  298.  
  299.  
  300. ;OPERATING SYSTEM--Specify the type of operating system on which the
  301. ;WinFax Host software is running. Do one of the following:
  302. ;
  303. ; * Unknown operating system - Set ConnectMethod=0.
  304. ; * Windows NT - Set ConnectMethod=1.
  305. ; * Windows 95/98 - Set ConnectMethod=2.
  306.  
  307. ConnectMethod=
  308.  
  309.  
  310. ;CHECK FOR NEW FAXES ON STARTUP--Use this option to 
  311. ;specify whether you want to check the WinFax Host computer
  312. ;for new faxes when you start WinFax. Do one of the following:
  313. ;
  314. ; * Check on startup - Set ReceiveCheckOnStartup=1.
  315. ; * Do not check on startup - Set ReceiveCheckOnStartup=0.
  316.  
  317. ReceiveCheckOnStartup=
  318.  
  319.  
  320. ;WINFAX HOST PASSWORD--Type the WinFax Host 
  321. ; computer's password (if it exists). 
  322.  
  323. Password=
  324.  
  325.  
  326.  
  327.  
  328.  
  329. [FAXGATE]
  330. ;Use this section to specify WinFax PRO for Networks settings.
  331. ;If you are not using this script file to install WinFax PRO for
  332. ;Networks, ignore this section.
  333. ;DO NOT DELETE THIS SECTION. 
  334.  
  335.  
  336. ;WORKGROUP NAME--Identifies the workgroup name on the network.
  337.  
  338. WRKGRP=workgroup name
  339.  
  340.  
  341. ; EXTENSION--Identifies the WinFax client's forwarding extension.
  342.  
  343. EXTENSION=forwarding extension
  344.  
  345.  
  346. ;NETWORK TYPE--This entry identifies the type of network 
  347. ;users are using. 
  348. ;Novell Netware (IPX)=-32767
  349. ;Windows for Workgroups (IPX)=-32511
  350. ;Windows for Workgroups (NetBIOS)=-32254
  351. ;Artisoft Lantastic (NetBIOS)=-31998
  352. ;Windows 95/NT (IPX)=-31743
  353. ;Windows 95/NT (NetBIOS)=-31742
  354. ;Other (NetBIOS)=-31230
  355.  
  356. NETTYPE=-32767
  357.  
  358.  
  359.  
  360.  
  361.  
  362. [CAS SETTINGS]
  363. ;Use this section to specify settings for CAS modems/fax devices.
  364. ;If you are not using this script file to install WinFax to work 
  365. ;with CAS modems/fax boards, ignore this section.
  366. ;DO NOT DELETE THIS SECTION. 
  367.  
  368.  
  369. ;ENABLE AUTOMATIC RECEIVE--Specify the default 
  370. ; receive mode. Do one of the following:
  371. ;
  372. ; * Enable automatic reception - Set UseWinFaxAutoreceive=1.
  373. ; * Disable automatic reception - Set UseWinFaxAutoreceive=0.
  374. ;
  375. ;If you disable automatic reception, the CAS modem/fax
  376. ;board receives all of your faxes instead of WinFax. After
  377. ;installing WinFax, you can change the automatic 
  378. ;reception setting from the Controller menu or from the
  379. ;Receive menu in Message Manager.
  380.  
  381. UseWinFaxAutoreceive=
  382.  
  383.  
  384. ;FAX HEADERS-- Specify whether you want to use WinFax 
  385. ;headers on fax pages or standard CAS headers. Do one of the
  386. ;following:
  387. ;
  388. ; * Use WinFax headers - Set UseWinFaxHeader=1.
  389. ; * Use CAS headers - Set UseWinFaxHeader=0.
  390.  
  391. UseWinFaxHeader=
  392.  
  393.  
  394.  
  395.  
  396.  
  397. [ISC SETTINGS]
  398. ;Use this section to specify settings for the ISDN fax device.
  399. ;If you are not using this script file to install WinFax for an
  400. ;ISDN fax device, ignore this section.
  401. ;DO NOT DELETE THIS SECTION. 
  402.  
  403.  
  404. ;USE SPEEDFAX--Specify whether you want to enable 
  405. ;the SpeedFax option for WinFax ISDN to WinFax ISDN
  406. ;communications. Enter 0 to disable the SpeedFax option.
  407. ;Do one of the following:
  408. ;
  409. ; * Enable SpeedFax - Set SpeedFax=1.
  410. ; * Disable SpeedFax - Set SpeedFax=0.
  411. ;
  412. ;Note: SpeedFax is not available in North America.
  413.  
  414. SpeedFax=
  415.  
  416.  
  417. ;ALLOW GLOBAL CALLS--Specify whether you 
  418. ;want to receive calls when no MSN is specified. Do
  419. ;one of the following:
  420. ;
  421. ; Receive calls without a MSN - Set GlobalCalls=1.
  422. ; Reject calls without a MSN - Set GlobalCalls=0.
  423.  
  424. GlobalCalls=
  425.  
  426.  
  427. ; BLOCK SIZE--Specify the fax block size. You can enter any number
  428. ;between 128 and 2048. The default varies depending on your ISDN card type.
  429.  
  430. BlockSize=
  431.  
  432.  
  433. ;RECEIVING EXTENSION--Specify your receiving extension. If you do not
  434. ;specify this option, calls are answered on all MSNs.
  435.  
  436. MSN=
  437.  
  438. ;CALLING LINE IDENTIFER--If your phone system or PBX requires a 
  439. ;calling line identifier, specify your CLID in this entry.
  440.  
  441. CLID=
  442.  
  443.  
  444.  
  445.  
  446.  
  447. [RFX SETTINGS]
  448. ;Use this section to specify settings for the RightFAX fax device.
  449. ;If you are not using this script file to install WinFax for an
  450. ;RightFAX fax device, ignore this section.
  451. ;DO NOT DELETE THIS SECTION. 
  452.  
  453. ;COMMUNICATION PROTOCOL--Specify which communication protocol
  454. ;you wish to use to talk to the server
  455. ;
  456. ; * Named Pipes - COMMPROTOCOL=1
  457. ; * IPX for OS/2 Servers - COMMPROTOCOL=2
  458. ; * SPX - COMMPROTOCOL=3
  459. ; * TCP/IP - COMMPROTOCOL=4
  460. ; * IPX - COMMPROTOCOL=5
  461. ;
  462. COMMPROTOCOL=4
  463.  
  464. ;SERVER NAME--Specify the server to connect with
  465. ;
  466. SERVERNAME=server_name
  467.  
  468. ;USER ID--Specify which user account to use
  469. ;
  470. ; * Take the current logged in account - USERID=@
  471. ; * Specified account - USERID=string
  472. ;
  473. USERID=user_id
  474.  
  475. ;PASSWORD--Specify the password to use
  476. ;
  477. ; * Specified password - PASSWORD=string
  478. ;
  479. PASSWORD=
  480.  
  481. ;RECEIVE COMPLETION--Specify what to do with received events
  482. ;
  483. ; * Delete event from server - RECEIVECOMPLETION=0
  484. ; * Mark event at server viewed - RECEIVECOMPLETION=1
  485. ;
  486. RECEIVECOMPLETION=0
  487.  
  488. ;SEND COMPLETION--Specify what to do with sent events
  489. ;
  490. ; * Delete event from server - SENDCOMPLETION=0
  491. ; * Mark event at server viewed - SENDCOMPLETION=1
  492. ;
  493. SENDCOMPLETION=0
  494.  
  495. ;USER INFO TIMEOUT--Specify how many seconds to wait between checks of
  496. ;the user information to see if there are any new receives or sends
  497. ;
  498. ; * Timeout value in seconds - USERINFOTIMEOUT=#
  499. ;
  500. USERINFOTIMEOUT=60
  501.  
  502. ;USER INFO FORCED TIMEOUT--Specify how many seconds to wait before
  503. ;a forced check is done of the receives and sends.  This ensures that
  504. ;we will periodically check for events, even if the user info says there
  505. ;are no changes in the event lists.
  506. ;
  507. ; * Timeout value in seconds - USERINFOFFORCEDTIMEOUT=#
  508. ;
  509. USERINFOFORCEDTIMEOUT=600
  510.  
  511. ;SERVER TIMEZONE BIAS--Specify the servers timezone offset to get to GMT.
  512. ;Remember that new servers beyond version 6.?? have automatic settings and
  513. ;will ignore this value
  514. ;
  515. ; * NO TIMEZONE BIAS FIXUP AT ALL - SERVERTIMEZONEBIAS=2147483647
  516. ; * Bias in minutes - SERVERTIMEZONEBIAS=300 (for EST)
  517. ;
  518. SERVERTIMEZONEBIAS=2147483647
  519.  
  520.  
  521.  
  522.  
  523.  
  524.